home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / ds40bpds.zip / DOORINST.ZIP / DOORINST.DOC next >
Text File  |  1991-10-24  |  2KB  |  48 lines

  1. Door Source Door Installer for your doors
  2. Written by Todd Miller - Copyrighted 1991
  3.  
  4. Introduction
  5. ------------
  6.  
  7. Door Installer will let you write a simple script file of questions to ask the
  8. user, and the responses will be stored in the configuration file. So if you're
  9. going to have a long configuration file, you can add in the extra lines in
  10. the script file for this program, include it with your door, and then the
  11. other sysops can run this and easily install your door. It will always ask
  12. the sysop for the output configuration file's name, and the standard first
  13. four questions (BBS interface file, BBS Name, Sysop's first name, Sysop's
  14. last name) and then your questions.
  15.  
  16. The script file
  17. ---------------
  18.  
  19. The script file is VERY simple, all you do is put the number of extra
  20. questions you want to ask the user on the very first line of the file, and
  21. then just type the questions. The questions shouldn't be longer than 40
  22. characters or they'll overrun the window on the screen. An example of a
  23. script file would be:
  24.  
  25. 5
  26. How many turns per day?
  27. How many plays per day?
  28. Name of high scores bulletin
  29. Name of log file
  30. Sysop's editor password
  31.  
  32. This file specifies that it has five questions to ask on the first line, then
  33. the five questions to ask come directly after that. Specifing a 0 for the
  34. number of questions will cause Door Installer to only ask the standard first
  35. four questions and skip the script file.
  36.  
  37. How to run Door Installer
  38. -------------------------
  39.  
  40. To run Door Installer, simply type DOORINST followed by the name of the
  41. script file for the door to be installed, for example:
  42.  
  43. DOORINST MYDOOR.SET
  44.  
  45. This would load the MYDOOR script file and ask the questions for the
  46. configuration file.
  47.  
  48.